home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 22
/
Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso
/
Aminet
/
util
/
arc
/
xFX.lha
/
xFX
/
ARexx
/
Write_Disk.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-25
|
530b
|
30 lines
/*
**************************
**** xFX ARexx script ****
**************************
Write a file-disk
*/
if ~show('P','xFX.1') then do /* Check if xFX is running */
say 'xFX not running !'
exit
end
OutDev = ''
InFile = ''
say 'Output device:'
parse pull OutDev
if OutDev ~= '' then do
say 'Input file:'
parse pull InFile
if InFile ~= '' then do
address 'xFX.1' write OutDev InFile
say 'Done.'
end
end